home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / n_b_v203.zip / FILESTUF.DMO < prev    next >
Text File  |  1996-07-04  |  2KB  |  34 lines

  1. $if 0
  2.     ┌──────────────────────────╖                        PowerBASIC v3.20
  3.  ┌──┤          DASoft          ╟──────────────────────┬──────────────────╖
  4.  │  ├──────────────────────────╢    Copyright 1995    │ DATE: 1995-10-01 ╟─╖
  5.  │  │ FILE NAME   FILESTUF.DMO ║          by          ╘════════════════─ ║ ║
  6.  │  │                          ║  Don Schullian, Jr.                     ║ ║
  7.  │  ╘══════════════════════════╝                                         ║ ║
  8.  │ A license is hereby granted to the holder to use this source code in  ║ ║
  9.  │ any program, commercial or otherwise,  without receiving the express  ║ ║
  10.  │ permission of the copyright holder and without paying any royalties,  ║ ║
  11.  │ as long as this code is not distributed in any compilable format.     ║ ║
  12.  │  IE: source code files, PowerBASIC Unit files, and printed listings   ║ ║
  13.  ╘═╤═════════════════════════════════════════════════════════════════════╝ ║
  14.    │                ....................................                   ║
  15.    ╘═══════════════════════════════════════════════════════════════════════╝
  16. $endif
  17.  
  18. $INCLUDE "DAS-NB02.INC"
  19. COLOR 7,0
  20. CLS
  21.  
  22. ? "┌────────────────────────────────────────────────────────────────────────
  23. ? "│ fKillFile%    ( FileSpec$ )           same as the KILL statement
  24. ? "│ fReNameFile%  ( FromSpec$, ToSpec$ )  same as the NAME statement
  25. ? "│ fCopyFile%    ( FromSpec$, ToSpec$ )  copies a file to another
  26. ? "│ fSetAttrib%   ( FileSpec$, Attrib? )  sets a file's attribute(s)
  27. ? "├────────────────────────────────────────────────────────────────────────
  28. ? "│ Most of these are straight forward functions. Some replace PowerBASIC
  29. ? "│ statements to provide error trapping/reporting while others just do a
  30. ? "│ simple task. The files in question should NOT be open when the functions
  31. ? "│ are called or an error will be reported.
  32. ? "└────────────────────────────────────────────────────────────────────────
  33.  
  34.